-
Notifications
You must be signed in to change notification settings - Fork 983
Add missing semicolon after struct/class definitions
#5733
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing semicolon after struct/class definitions
#5733
Conversation
|
Learn Build status updates of commit 08147a0: ✅ Validation status: passed
For more details, please refer to the build report. |
|
Can you review the proposed changes? Important: When the changes are ready for publication, adding a #label:"aq-pr-triaged" |
TylerMSFT
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for adding the mighty (and necessary) semicolon.
|
#sign-off |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This pull request fixes C++ syntax errors by adding missing semicolons after struct/class definitions in code examples, and updates metadata to follow repository conventions.
Changes:
- Added missing semicolons (
;) to C++ struct/class definitions in 7 documentation files, fixing syntax errors in code examples - Updated frontmatter metadata to follow repository conventions: placing
titlebeforedescription, removing deprecatedms.assetidfields, and removing quotes fromms.datevalues
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| docs/standard-library/slice-array-class.md | Fixed missing semicolon after slice_array class definition; updated metadata ordering and removed ms.assetid |
| docs/standard-library/scoped-lock-class.md | Fixed missing semicolon after scoped_lock class definition; updated metadata ordering and removed quotes from ms.date |
| docs/standard-library/ratio.md | Fixed missing semicolon after ratio struct definition; updated metadata ordering, removed ms.assetid, and removed quotes from ms.date |
| docs/standard-library/gslice-array-class.md | Fixed missing semicolon after gslice_array class definition; updated metadata ordering and removed ms.assetid |
| docs/sanitizers/error-new-delete-type-mismatch.md | Fixed missing semicolon after Base struct definition in code example |
| docs/error-messages/compiler-errors-2/compiler-error-c2698.md | Fixed missing semicolon after C struct definition in code example |
| docs/data/odbc/recordset-fetching-records-in-bulk-odbc.md | Fixed missing semicolon after MultiRowSet class definition; updated metadata ordering, removed ms.assetid, and removed quotes from ms.date |
Add missing semicolon which causes a syntax error and update some metadata.